home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / cmln0985.arc / DEBATE.LTG < prev    next >
Text File  |  1986-02-27  |  384b  |  19 lines

  1.  
  2.                   Designers Debate - September
  3.                             Listing 1
  4.  
  5.     Function chord(real: r,theta); real;
  6.     begin
  7.       .....
  8.       chord := result;
  9.       .....
  10.     end;
  11.  
  12. in C would be:
  13.     float chord(r,theta) float r,theta;
  14.     {
  15.       .....
  16.       return(result);
  17.       .....
  18.     }
  19.